home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource5
/
357_01
/
cstar1.exe
/
DARG.PP
< prev
next >
Wrap
Text File
|
1991-11-15
|
272b
|
15 lines
/*
1/12/86 -d identifier defines an identifier on the command line.
Test this program with cpp darg.tst out -d a=whatever.
*/
#ifdef a
"a" is defined to be a
#else
"a" is NOT defined.
#endif
#ifdef A
"A" is defined to be A
#else
"A" is NOT defined.
#endif